home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1984-1991, 1992, 1993, 1994, Silicon Graphics, Inc.
- * All Rights Reserved.
- *
- * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
- * the contents of this file may not be disclosed to third parties, copied or
- * duplicated in any form, in whole or in part, without the prior written
- * permission of Silicon Graphics, Inc.
- *
- * RESTRICTED RIGHTS LEGEND:
- * Use, duplication or disclosure by the Government is subject to restrictions
- * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
- * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
- * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
- * rights reserved under the Copyright Laws of the United States.
- */
-
- /*
- * light.h
- */
-
- #define ON 1
- #define OFF 0
-
- /*
- * materials
- */
- #define MAT_SWAMP 1
- #define MAT_PLANE 2
- #define MAT_DIRT 3
- #define MAT_GRAY0 4
- #define MAT_GRAY1 5
- #define MAT_GRAY2 6
- #define MAT_GRAY3 7
- #define MAT_GRAY4 8
- #define MAT_GRAY5 9
- #define MAT_GRAY6 10
- #define MAT_GRAY7 11
- #define MAT_GRAY8 12
- #define MAT_GRAY9 13
- #define MAT_GRAY10 14
- #define MAT_GRAY11 15
- #define MAT_GRAY12 16
- #define MAT_THRUSTER 17
- #define MAT_GLASS 18
- #define MAT_PROP 19
- #define MAT_BORANGE 20
- #define MAT_BLIME 21
- #define MAT_BTAN 22
- #define MAT_BGRAY 23
- #define MAT_PURPLE 24
- #define MAT_LPURPLE 25
- #define MAT_MTRAIL 26
-
- #define MAT_F14BLACK 50
- #define MAT_F14YELLOW 51
- #define MAT_WHITE 52
-
- /*
- * lights
- */
- #define SUN 1
- #define MOON 2
- #define INST_LIGHT 3
-
- /*
- * lighting models
- */
- #define INFINITE 1
-
-